    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    :root {
        --black: #0d0d0d;
        --cream: #f7f3ee;
        --warm: #f0e8db;
        --gold: #c9933a;
        --gold-dark: #a37428;
        --text: #1a1a1a;
        --muted: #6b6459;
        --border: rgba(0, 0, 0, 0.12);
        --white: #ffffff;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'DM Sans', sans-serif;
        background: var(--cream);
        color: var(--text);
        overflow-x: hidden;
    }

    /* NAV */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        background: rgba(247, 243, 238, 0.92);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border);
        padding: 1rem 2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-logo {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        font-weight: 900;
        letter-spacing: -0.02em;
        color: var(--black);
    }

    .nav-logo span {
        color: var(--gold);
    }

    .nav-links {
        display: flex;
        gap: 2rem;
        list-style: none;
    }

    .nav-links a {
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--muted);
        text-decoration: none;
        transition: color 0.2s;
    }

    .nav-links a:hover {
        color: var(--gold);
    }

    /* COTIZADOR */
    .cot-section {
        padding: 6rem 5rem;
        background: var(--warm);
    }

    .cot-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
        margin-top: 3rem;
    }

    .cot-box {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 1.25rem;
        padding: 2rem;
    }

    .cot-field {
        margin-bottom: 1.25rem;
    }

    .cot-field label {
        display: block;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 0.4rem;
    }

    .cot-field-note {
        font-size: 0.75rem;
        color: var(--muted);
        margin-top: 0.3rem;
    }

    .cot-input-wrap {
        display: flex;
        align-items: center;
        border: 1.5px solid var(--border);
        border-radius: 0.6rem;
        overflow: hidden;
        background: var(--cream);
        transition: border-color 0.2s;
    }

    .cot-input-wrap:focus-within {
        border-color: var(--gold);
    }

    .cot-prefix {
        padding: 0 0.75rem;
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--muted);
        border-right: 1px solid var(--border);
        line-height: 44px;
        background: var(--warm);
        white-space: nowrap;
    }

    .cot-input-wrap input {
        border: none;
        background: transparent;
        padding: 0 0.75rem;
        height: 44px;
        font-size: 1rem;
        font-family: 'DM Sans', sans-serif;
        color: var(--text);
        width: 100%;
        outline: none;
    }

    .cot-check-row {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        margin-bottom: 1rem;
    }

    .cot-check-row input {
        width: 16px;
        height: 16px;
        accent-color: var(--gold);
        cursor: pointer;
    }

    .cot-check-row label {
        font-size: 0.875rem;
        color: var(--muted);
        cursor: pointer;
    }

    .cot-tc {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .cot-tc label {
        font-size: 0.8rem;
        color: var(--muted);
        white-space: nowrap;
    }

    .cot-divider {
        border: none;
        border-top: 1px solid var(--border);
        margin: 1.25rem 0;
    }

    .bk-section {
        background: var(--cream);
        border-radius: 0.75rem;
        padding: 1.25rem;
    }

    .bk-row {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        padding: 0.45rem 0;
        border-bottom: 1px solid var(--border);
        font-size: 0.875rem;
    }

    .bk-row:last-child {
        border-bottom: none;
    }

    .bk-label {
        color: var(--muted);
    }

    .bk-sublabel {
        font-size: 0.72rem;
        color: var(--muted);
        opacity: 0.7;
    }

    .bk-val {
        font-weight: 600;
        color: var(--text);
    }

    .bk-subtotal {
        border-top: 1.5px solid var(--border) !important;
        margin-top: 4px;
        padding-top: 0.6rem !important;
    }

    .bk-subtotal .bk-label {
        font-weight: 600;
        color: var(--text);
    }

    .cot-total {
        background: var(--black);
        border-radius: 1rem;
        padding: 1.5rem;
        margin-top: 1.25rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .cot-total-label {
        font-size: 0.8rem;
        color: rgba(247, 243, 238, 0.55);
        margin-bottom: 0.3rem;
    }

    .cot-total-usd {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--gold);
    }

    .cot-total-mxn {
        font-size: 0.85rem;
        color: rgba(247, 243, 238, 0.45);
        margin-top: 0.2rem;
    }

    .cot-info-note {
        font-size: 0.75rem;
        color: var(--muted);
        margin-top: 0.75rem;
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }

    .cot-send-btn {
        width: 100%;
        margin-top: 1.25rem;
        background: var(--gold);
        color: var(--white);
        border: none;
        border-radius: 2rem;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        font-weight: 700;
        font-family: 'DM Sans', sans-serif;
        cursor: pointer;
        transition: background 0.2s;
    }

    .cot-send-btn:hover {
        background: var(--gold-dark);
    }

    .cot-steps {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .cot-step {
        display: flex;
        gap: 1rem;
        align-items: flex-start;
    }

    .cot-step-num {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--black);
        color: var(--cream);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Playfair Display', serif;
        font-size: 1rem;
        font-weight: 700;
        flex-shrink: 0;
    }

    .cot-step-body h4 {
        font-weight: 700;
        font-size: 0.95rem;
        color: var(--black);
        margin-bottom: 0.2rem;
    }

    .cot-step-body p {
        font-size: 0.85rem;
        color: var(--muted);
        line-height: 1.6;
    }

    .cot-highlight {
        background: var(--black);
        border-radius: 1rem;
        padding: 1.5rem;
        margin-top: 1.5rem;
    }

    .cot-highlight p {
        font-size: 0.9rem;
        color: rgba(247, 243, 238, 0.7);
        line-height: 1.7;
    }

    .cot-highlight strong {
        color: var(--gold);
    }

    @media (max-width: 768px) {
        .cot-section {
            padding: 4rem 1.5rem;
        }

        .cot-grid {
            grid-template-columns: 1fr;
        }
    }

    .nav-cta {
        background: var(--black);
        color: var(--cream);
        padding: 0.6rem 1.4rem;
        border-radius: 2rem;
        font-size: 0.875rem;
        font-weight: 600;
        text-decoration: none;
        transition: background 0.2s;
    }

    .nav-cta:hover {
        background: var(--gold-dark);
    }

    /* HERO */
    .hero {
        min-height: 100vh;
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding-top: 80px;
        position: relative;
        overflow: hidden;
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 5rem 4rem 5rem 5rem;
        position: relative;
        z-index: 2;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: var(--gold);
        color: var(--white);
        padding: 0.4rem 1rem;
        border-radius: 2rem;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        width: fit-content;
        margin-bottom: 1.5rem;
    }

    .hero-badge::before {
        content: '★';
        font-size: 0.65rem;
    }

    .hero h1 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(3rem, 5vw, 4.5rem);
        font-weight: 900;
        line-height: 1.05;
        color: var(--black);
        margin-bottom: 1.5rem;
    }

    .hero h1 em {
        font-style: italic;
        color: var(--gold);
    }

    .hero-sub {
        font-size: 1.1rem;
        color: var(--muted);
        line-height: 1.7;
        max-width: 430px;
        margin-bottom: 2.5rem;
    }

    .hero-actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .btn-primary {
        background: var(--black);
        color: var(--cream);
        padding: 1rem 2rem;
        border-radius: 2rem;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .btn-primary:hover {
        background: var(--gold-dark);
        transform: translateY(-2px);
    }

    .btn-outline {
        border: 2px solid var(--black);
        color: var(--black);
        padding: 1rem 2rem;
        border-radius: 2rem;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s;
    }

    .btn-outline:hover {
        background: var(--black);
        color: var(--cream);
    }

    .hero-right {
        background: var(--black);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    .hero-visual {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .hero-pattern {
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient(45deg, transparent, transparent 40px,
                rgba(201, 147, 58, 0.06) 40px, rgba(201, 147, 58, 0.06) 41px);
    }

    .hero-card-stack {
        position: relative;
        width: 320px;
        height: 400px;
    }

    .hero-card {
        position: absolute;
        border-radius: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        text-align: center;
    }

    .hero-card-1 {
        width: 260px;
        height: 340px;
        background: var(--cream);
        top: 30px;
        left: 30px;
        transform: rotate(-4deg);
    }

    .hero-card-2 {
        width: 260px;
        height: 340px;
        background: var(--gold);
        top: 0;
        left: 60px;
        transform: rotate(2deg);
    }

    .hero-card-2 .card-icon {
        font-size: 4rem;
        margin-bottom: 1rem;
    }

    .hero-card-2 .card-title {
        font-family: 'Playfair Display', serif;
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--white);
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }

    .hero-card-2 .card-sub {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.8);
    }

    .hero-stats {
        position: absolute;
        bottom: 2rem;
        right: -1rem;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .stat-pill {
        background: var(--white);
        border-radius: 2rem;
        padding: 0.6rem 1.2rem;
        display: flex;
        align-items: center;
        gap: 0.6rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    .stat-pill .num {
        font-family: 'Playfair Display', serif;
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--black);
    }

    .stat-pill .lbl {
        font-size: 0.75rem;
        color: var(--muted);
    }

    /* BRANDS TICKER */
    .brands-bar {
        background: var(--black);
        padding: 1.2rem 0;
        overflow: hidden;
        position: relative;
    }

    .brands-bar::before,
    .brands-bar::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100px;
        z-index: 2;
    }

    .brands-bar::before {
        left: 0;
        background: linear-gradient(to right, var(--black), transparent);
    }

    .brands-bar::after {
        right: 0;
        background: linear-gradient(to left, var(--black), transparent);
    }

    .brands-track {
        display: flex;
        gap: 3rem;
        width: max-content;
        animation: ticker 22s linear infinite;
    }

    @keyframes ticker {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

    .brand-name {
        font-family: 'Playfair Display', serif;
        font-size: 0.95rem;
        font-weight: 400;
        letter-spacing: 0.1em;
        color: var(--gold);
        white-space: nowrap;
        text-transform: uppercase;
    }

    .brand-sep {
        color: rgba(201, 147, 58, 0.4);
        font-size: 0.7rem;
    }

    /* HOW IT WORKS */
    .section {
        padding: 6rem 5rem;
    }

    .section-label {
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 1rem;
    }

    .section-title {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 900;
        color: var(--black);
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .section-title em {
        font-style: italic;
    }

    .section-sub {
        font-size: 1.05rem;
        color: var(--muted);
        max-width: 480px;
        line-height: 1.7;
        margin-bottom: 4rem;
    }

    .steps-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .step-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 1.25rem;
        padding: 2rem 1.75rem;
        position: relative;
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .step-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    }

    .step-num {
        font-family: 'Playfair Display', serif;
        font-size: 3.5rem;
        font-weight: 900;
        color: var(--warm);
        line-height: 1;
        margin-bottom: 0.5rem;
    }

    .step-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .step-title {
        font-weight: 700;
        font-size: 1rem;
        color: var(--black);
        margin-bottom: 0.5rem;
    }

    .step-desc {
        font-size: 0.875rem;
        color: var(--muted);
        line-height: 1.6;
    }

    /* DELIVERY BANNER */
    .delivery-banner {
        background: var(--black);
        margin: 0 5rem;
        border-radius: 1.5rem;
        padding: 3rem 4rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .delivery-text h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        font-weight: 900;
        color: var(--cream);
        margin-bottom: 0.5rem;
    }

    .delivery-text p {
        color: rgba(247, 243, 238, 0.65);
        font-size: 1rem;
    }

    .delivery-days {
        display: flex;
        gap: 1.5rem;
    }

    .day-block {
        text-align: center;
        background: rgba(255, 255, 255, 0.07);
        border-radius: 1rem;
        padding: 1.25rem 1.75rem;
    }

    .day-block .num {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        font-weight: 900;
        color: var(--gold);
        line-height: 1;
    }

    .day-block .lbl {
        font-size: 0.75rem;
        color: rgba(247, 243, 238, 0.5);
        margin-top: 0.25rem;
    }

    /* WHY US */
    .why-section {
        background: var(--warm);
    }

    .why-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1px;
        background: var(--border);
        border: 1px solid var(--border);
        border-radius: 1.25rem;
        overflow: hidden;
        margin-top: 3rem;
    }

    .why-item {
        background: var(--warm);
        padding: 2.5rem;
        transition: background 0.2s;
    }

    .why-item:hover {
        background: var(--white);
    }

    .why-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .why-title {
        font-weight: 700;
        font-size: 1.1rem;
        color: var(--black);
        margin-bottom: 0.5rem;
    }

    .why-desc {
        font-size: 0.9rem;
        color: var(--muted);
        line-height: 1.65;
    }

    /* TESTIMONIALS */
    .testimonials {
        padding: 6rem 5rem;
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .testi-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 1.25rem;
        padding: 2rem;
        position: relative;
    }

    .testi-stars {
        color: var(--gold);
        font-size: 1rem;
        margin-bottom: 1rem;
        letter-spacing: 2px;
    }

    .testi-text {
        font-size: 0.95rem;
        color: var(--text);
        line-height: 1.7;
        margin-bottom: 1.5rem;
        font-style: italic;
    }

    .testi-author {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .testi-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 0.85rem;
        color: var(--white);
    }

    .testi-name {
        font-weight: 600;
        font-size: 0.9rem;
        color: var(--black);
    }

    .testi-loc {
        font-size: 0.8rem;
        color: var(--muted);
    }

    /* FAQ */
    .faq-section {
        background: var(--cream);
        padding: 6rem 5rem;
    }

    .faq-list {
        max-width: 760px;
        margin-top: 3rem;
    }

    .faq-item {
        border-bottom: 1px solid var(--border);
        padding: 0;
    }

    .faq-q {
        width: 100%;
        background: none;
        border: none;
        cursor: pointer;
        padding: 1.5rem 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        text-align: left;
    }

    .faq-q-text {
        font-weight: 600;
        font-size: 1rem;
        color: var(--black);
    }

    .faq-icon {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        border: 1.5px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: var(--gold);
        flex-shrink: 0;
        transition: transform 0.3s;
    }

    .faq-item.open .faq-icon {
        transform: rotate(45deg);
    }

    .faq-a {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.3s;
        padding: 0;
    }

    .faq-item.open .faq-a {
        max-height: 300px;
        padding-bottom: 1.5rem;
    }

    .faq-a p {
        font-size: 0.95rem;
        color: var(--muted);
        line-height: 1.7;
    }

    /* CTA FINAL */
    .final-cta {
        background: var(--black);
        padding: 7rem 5rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .final-cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(ellipse at 50% 0%, rgba(201, 147, 58, 0.15) 0%, transparent 70%);
    }

    .final-cta h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 900;
        color: var(--cream);
        margin-bottom: 1rem;
        position: relative;
        line-height: 1.1;
    }

    .final-cta h2 em {
        font-style: italic;
        color: var(--gold);
    }

    .final-cta p {
        font-size: 1.1rem;
        color: rgba(247, 243, 238, 0.6);
        margin-bottom: 2.5rem;
        position: relative;
    }

    .final-cta-actions {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        position: relative;
    }

    .btn-gold {
        background: var(--gold);
        color: var(--white);
        padding: 1rem 2.5rem;
        border-radius: 2rem;
        font-size: 1rem;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .btn-gold:hover {
        background: var(--gold-dark);
        transform: translateY(-2px);
    }

    .btn-outline-light {
        border: 2px solid rgba(247, 243, 238, 0.3);
        color: var(--cream);
        padding: 1rem 2.5rem;
        border-radius: 2rem;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s;
    }

    .btn-outline-light:hover {
        border-color: var(--gold);
        color: var(--gold);
    }

    /* FOOTER */
    footer {
        background: var(--black);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding: 2.5rem 5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-logo {
        font-family: 'Playfair Display', serif;
        font-size: 1.2rem;
        font-weight: 900;
        color: var(--cream);
    }

    .footer-logo span {
        color: var(--gold);
    }

    .footer-copy {
        font-size: 0.8rem;
        color: rgba(247, 243, 238, 0.35);
    }

    .footer-social a {
        color: rgba(247, 243, 238, 0.5);
        font-size: 0.85rem;
        text-decoration: none;
        transition: color 0.2s;
    }

    .footer-social a:hover {
        color: var(--gold);
    }

    /* MOBILE */
    @media (max-width: 768px) {
        .hero {
            grid-template-columns: 1fr;
            min-height: auto;
        }

        .hero-left {
            padding: 2rem 1.5rem;
            padding-top: 6rem;
        }

        .hero-right {
            height: 320px;
        }

        .section {
            padding: 4rem 1.5rem;
        }

        .delivery-banner {
            margin: 0 1.5rem;
            padding: 2rem 1.5rem;
        }

        .delivery-days {
            flex-wrap: wrap;
        }

        .why-grid {
            grid-template-columns: 1fr;
        }

        .testimonials {
            padding: 4rem 1.5rem;
        }

        .faq-section {
            padding: 4rem 1.5rem;
        }

        .final-cta {
            padding: 5rem 1.5rem;
        }

        footer {
            padding: 2rem 1.5rem;
            flex-direction: column;
            text-align: center;
        }

        .nav-links {
            display: none;
        }
    }